home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
hardware
/
cpu115
/
cpu.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-02-27
|
883b
|
28 lines
{$A+,B-,D+,E-,F-,G-,I-,L+,N-,O-,R-,S-,V-,X+}
{$M 16384,0,655360}
{ --------------------------------------------------------------------------- }
{ CPU.PAS Sample program demonstrating usage of TMi0SDGL(tm) routines }
{ }
{ Copyright(c) 1994,95 by B-coolWare. Written by Bobby Z. }
{ --------------------------------------------------------------------------- }
{ files needed to build project:
HEADER.ASH
CPU_HL.ASM
CPUSPEED.ASM
SMM.ASM
CPUTYPE.PAS }
uses CPUType;
const
SMM : array[Boolean] of String[39] =
('',' [System Management Mode available]');
begin
WriteLn('CPU Type Identifier/Pas Version 1.15 Copyright(c) 1992-95 by B-coolWare.');
WriteLn;
WriteLn(' Processor: ',CPU_TypeStr, ', ',intCPUSpeed,'MHz',SMM[isSMMAble]);
WriteLn('Coprocessor: ',CoPro_TypeStr);
end.